home *** CD-ROM | disk | FTP | other *** search
/ Delphi 5 for Professionals / DELPHI5.iso / AddOns / Components / RealTime Graphics ActiveX / DATA.3 / Examples / CPP / Bars / Bars.rc < prev    next >
Encoding:
Text File  |  1997-10-16  |  16.7 KB  |  481 lines

  1. //Microsoft Developer Studio generated resource script.
  2. //
  3. #include "resource.h"
  4.  
  5. #define APSTUDIO_READONLY_SYMBOLS
  6. /////////////////////////////////////////////////////////////////////////////
  7. //
  8. // Generated from the TEXTINCLUDE 2 resource.
  9. //
  10. #include "afxres.h"
  11.  
  12. /////////////////////////////////////////////////////////////////////////////
  13. #undef APSTUDIO_READONLY_SYMBOLS
  14.  
  15. /////////////////////////////////////////////////////////////////////////////
  16. // English (U.S.) resources
  17.  
  18. #if !defined(AFX_RESOURCE_DLL) || defined(AFX_TARG_ENU)
  19. #ifdef _WIN32
  20. LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US
  21. #pragma code_page(1252)
  22. #endif //_WIN32
  23.  
  24. #ifdef APSTUDIO_INVOKED
  25. /////////////////////////////////////////////////////////////////////////////
  26. //
  27. // TEXTINCLUDE
  28. //
  29.  
  30. 1 TEXTINCLUDE DISCARDABLE 
  31. BEGIN
  32.     "resource.h\0"
  33. END
  34.  
  35. 2 TEXTINCLUDE DISCARDABLE 
  36. BEGIN
  37.     "#include ""afxres.h""\r\n"
  38.     "\0"
  39. END
  40.  
  41. 3 TEXTINCLUDE DISCARDABLE 
  42. BEGIN
  43.     "#define _AFX_NO_SPLITTER_RESOURCES\r\n"
  44.     "#define _AFX_NO_OLE_RESOURCES\r\n"
  45.     "#define _AFX_NO_TRACKER_RESOURCES\r\n"
  46.     "#define _AFX_NO_PROPERTY_RESOURCES\r\n"
  47.     "\r\n"
  48.     "#if !defined(AFX_RESOURCE_DLL) || defined(AFX_TARG_ENU)\r\n"
  49.     "#ifdef _WIN32\r\n"
  50.     "LANGUAGE 9, 1\r\n"
  51.     "#pragma code_page(1252)\r\n"
  52.     "#endif\r\n"
  53.     "#include ""res\\Bars.rc2""  // non-Microsoft Visual C++ edited resources\r\n"
  54.     "#include ""afxres.rc""         // Standard components\r\n"
  55.     "#include ""afxprint.rc""       // printing/print preview resources\r\n"
  56.     "#endif\0"
  57. END
  58.  
  59. #endif    // APSTUDIO_INVOKED
  60.  
  61.  
  62. /////////////////////////////////////////////////////////////////////////////
  63. //
  64. // Icon
  65. //
  66.  
  67. // Icon with lowest ID value placed first to ensure application icon
  68. // remains consistent on all systems.
  69. IDR_MAINFRAME           ICON    DISCARDABLE     "res\\Bars.ico"
  70. IDR_BARSTYPE            ICON    DISCARDABLE     "res\\BarsDoc.ico"
  71.  
  72. /////////////////////////////////////////////////////////////////////////////
  73. //
  74. // Bitmap
  75. //
  76.  
  77. IDR_MAINFRAME           BITMAP  MOVEABLE PURE   "res\\Toolbar.bmp"
  78.  
  79. /////////////////////////////////////////////////////////////////////////////
  80. //
  81. // Toolbar
  82. //
  83.  
  84. IDR_MAINFRAME TOOLBAR DISCARDABLE  16, 15
  85. BEGIN
  86.     BUTTON      ID_FILE_NEW
  87.     BUTTON      ID_FILE_OPEN
  88.     BUTTON      ID_FILE_SAVE
  89.     SEPARATOR
  90.     BUTTON      ID_EDIT_CUT
  91.     BUTTON      ID_EDIT_COPY
  92.     BUTTON      ID_EDIT_PASTE
  93.     SEPARATOR
  94.     BUTTON      ID_FILE_PRINT
  95.     BUTTON      ID_APP_ABOUT
  96. END
  97.  
  98.  
  99. /////////////////////////////////////////////////////////////////////////////
  100. //
  101. // Menu
  102. //
  103.  
  104. IDR_MAINFRAME MENU PRELOAD DISCARDABLE 
  105. BEGIN
  106.     POPUP "&File"
  107.     BEGIN
  108.         MENUITEM "&New\tCtrl+N",                ID_FILE_NEW
  109.         MENUITEM "&Open...\tCtrl+O",            ID_FILE_OPEN
  110.         MENUITEM "&Save\tCtrl+S",               ID_FILE_SAVE
  111.         MENUITEM "Save &As...",                 ID_FILE_SAVE_AS
  112.         MENUITEM SEPARATOR
  113.         MENUITEM "&Print...\tCtrl+P",           ID_FILE_PRINT
  114.         MENUITEM "Print Pre&view",              ID_FILE_PRINT_PREVIEW
  115.         MENUITEM "P&rint Setup...",             ID_FILE_PRINT_SETUP
  116.         MENUITEM SEPARATOR
  117.         MENUITEM "Recent File",                 ID_FILE_MRU_FILE1, GRAYED
  118.         MENUITEM SEPARATOR
  119.         MENUITEM "E&xit",                       ID_APP_EXIT
  120.     END
  121.     POPUP "&Edit"
  122.     BEGIN
  123.         MENUITEM "&Undo\tCtrl+Z",               ID_EDIT_UNDO
  124.         MENUITEM SEPARATOR
  125.         MENUITEM "Cu&t\tCtrl+X",                ID_EDIT_CUT
  126.         MENUITEM "&Copy\tCtrl+C",               ID_EDIT_COPY
  127.         MENUITEM "&Paste\tCtrl+V",              ID_EDIT_PASTE
  128.     END
  129.     POPUP "&View"
  130.     BEGIN
  131.         MENUITEM "&Toolbar",                    ID_VIEW_TOOLBAR
  132.         MENUITEM "&Status Bar",                 ID_VIEW_STATUS_BAR
  133.     END
  134.     POPUP "&Help"
  135.     BEGIN
  136.         MENUITEM "&About Bars...",              ID_APP_ABOUT
  137.     END
  138. END
  139.  
  140.  
  141. /////////////////////////////////////////////////////////////////////////////
  142. //
  143. // Accelerator
  144. //
  145.  
  146. IDR_MAINFRAME ACCELERATORS PRELOAD MOVEABLE PURE 
  147. BEGIN
  148.     "N",            ID_FILE_NEW,            VIRTKEY, CONTROL
  149.     "O",            ID_FILE_OPEN,           VIRTKEY, CONTROL
  150.     "S",            ID_FILE_SAVE,           VIRTKEY, CONTROL
  151.     "P",            ID_FILE_PRINT,          VIRTKEY, CONTROL
  152.     "Z",            ID_EDIT_UNDO,           VIRTKEY, CONTROL
  153.     "X",            ID_EDIT_CUT,            VIRTKEY, CONTROL
  154.     "C",            ID_EDIT_COPY,           VIRTKEY, CONTROL
  155.     "V",            ID_EDIT_PASTE,          VIRTKEY, CONTROL
  156.     VK_BACK,        ID_EDIT_UNDO,           VIRTKEY, ALT
  157.     VK_DELETE,      ID_EDIT_CUT,            VIRTKEY, SHIFT
  158.     VK_INSERT,      ID_EDIT_COPY,           VIRTKEY, CONTROL
  159.     VK_INSERT,      ID_EDIT_PASTE,          VIRTKEY, SHIFT
  160.     VK_F6,          ID_NEXT_PANE,           VIRTKEY 
  161.     VK_F6,          ID_PREV_PANE,           VIRTKEY, SHIFT
  162. END
  163.  
  164.  
  165. /////////////////////////////////////////////////////////////////////////////
  166. //
  167. // Dialog
  168. //
  169.  
  170. IDD_ABOUTBOX DIALOG DISCARDABLE  0, 0, 217, 55
  171. STYLE DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU
  172. CAPTION "About Bars"
  173. FONT 8, "MS Sans Serif"
  174. BEGIN
  175.     ICON            IDR_MAINFRAME,IDC_STATIC,11,17,20,20
  176.     LTEXT           "Bars Version 1.0",IDC_STATIC,40,10,119,8,SS_NOPREFIX
  177.     LTEXT           "Copyright (C) 1997",IDC_STATIC,40,25,119,8
  178.     DEFPUSHBUTTON   "OK",IDOK,178,7,32,14,WS_GROUP
  179. END
  180.  
  181. IDD_BARS_FORM DIALOG DISCARDABLE  0, 0, 405, 249
  182. STYLE WS_CHILD
  183. FONT 8, "MS Sans Serif"
  184. BEGIN
  185.     CONTROL         "",IDC_RTBARXCTRL1,
  186.                     "{CDA5F5E7-DE50-11D0-A956-00C0F6A06F60}",WS_TABSTOP,18,
  187.                     15,180,174
  188.     CONTROL         "",IDC_RTBARXCTRL2,
  189.                     "{CDA5F5E7-DE50-11D0-A956-00C0F6A06F60}",WS_TABSTOP,207,
  190.                     15,180,174
  191. END
  192.  
  193.  
  194. #ifndef _MAC
  195. /////////////////////////////////////////////////////////////////////////////
  196. //
  197. // Version
  198. //
  199.  
  200. VS_VERSION_INFO VERSIONINFO
  201.  FILEVERSION 1,0,0,1
  202.  PRODUCTVERSION 1,0,0,1
  203.  FILEFLAGSMASK 0x3fL
  204. #ifdef _DEBUG
  205.  FILEFLAGS 0x1L
  206. #else
  207.  FILEFLAGS 0x0L
  208. #endif
  209.  FILEOS 0x4L
  210.  FILETYPE 0x1L
  211.  FILESUBTYPE 0x0L
  212. BEGIN
  213.     BLOCK "StringFileInfo"
  214.     BEGIN
  215.         BLOCK "040904B0"
  216.         BEGIN
  217.             VALUE "CompanyName", "\0"
  218.             VALUE "FileDescription", "Bars MFC Application\0"
  219.             VALUE "FileVersion", "1, 0, 0, 1\0"
  220.             VALUE "InternalName", "Bars\0"
  221.             VALUE "LegalCopyright", "Copyright (C) 1997\0"
  222.             VALUE "LegalTrademarks", "\0"
  223.             VALUE "OriginalFilename", "Bars.EXE\0"
  224.             VALUE "ProductName", "Bars Application\0"
  225.             VALUE "ProductVersion", "1, 0, 0, 1\0"
  226.         END
  227.     END
  228.     BLOCK "VarFileInfo"
  229.     BEGIN
  230.         VALUE "Translation", 0x409, 1200
  231.     END
  232. END
  233.  
  234. #endif    // !_MAC
  235.  
  236.  
  237. /////////////////////////////////////////////////////////////////////////////
  238. //
  239. // DESIGNINFO
  240. //
  241.  
  242. #ifdef APSTUDIO_INVOKED
  243. GUIDELINES DESIGNINFO DISCARDABLE 
  244. BEGIN
  245.     IDD_ABOUTBOX, DIALOG
  246.     BEGIN
  247.         LEFTMARGIN, 7
  248.         RIGHTMARGIN, 210
  249.         TOPMARGIN, 7
  250.         BOTTOMMARGIN, 48
  251.     END
  252.  
  253.     IDD_BARS_FORM, DIALOG
  254.     BEGIN
  255.         LEFTMARGIN, 7
  256.         RIGHTMARGIN, 398
  257.         TOPMARGIN, 7
  258.         BOTTOMMARGIN, 242
  259.     END
  260. END
  261. #endif    // APSTUDIO_INVOKED
  262.  
  263.  
  264. /////////////////////////////////////////////////////////////////////////////
  265. //
  266. // Dialog Info
  267. //
  268.  
  269. IDD_BARS_FORM DLGINIT
  270. BEGIN
  271.     IDC_RTBARXCTRL1, 0x376, 504, 0
  272. 0x0000, 0x0000, 0x0000, 0x0001, 0x1dc4, 0x0000, 0x1cc6, 0x0000, 0x0020, 
  273. 0x0000, 0x0000, 0xffff, 0x00ff, 0x999a, 0x9999, 0x9999, 0x3fc9, 0x999a, 
  274. 0x9999, 0x9999, 0x3fe9, 0x999a, 0x9999, 0x9999, 0x3fe9, 0x999a, 0x9999, 
  275. 0x9999, 0x3fc9, 0x0000, 0x0000, 0xc0c0, 0x00c0, 0x0000, 0x0000, 0x0001, 
  276. 0x0000, 0x0000, 0x0000, 0x0008, 0x0000, 0x0000, 0x0000, 0x0001, 0x0000, 
  277. 0x0000, 0x0000, 0x0001, 0x0000, 0x0000, 0x0000, 0x0000, 0x4024, 0x0000, 
  278. 0x0000, 0x0000, 0x0000, 0x0001, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 
  279. 0x0000, 0x1400, 0x0040, 0x0000, 0x0000, 0x1400, 0x0040, 0x0000, 0x0000, 
  280. 0x4105, 0x6972, 0x6c61, 0x0000, 0x0000, 0xff00, 0x0000, 0x0000, 0x00ff, 
  281. 0x00ff, 0x0000, 0x0000, 0x4804, 0x6769, 0x0068, 0x0000, 0x0000, 0x2200, 
  282. 0x0340, 0x6f4c, 0x0077, 0x0000, 0x0000, 0xf000, 0x063f, 0x6f4e, 0x6d72, 
  283. 0x6c61, 0x0000, 0x0000, 0x0000, 0x4014, 0x0000, 0x0000, 0x0000, 0x0000, 
  284. 0x3ff0, 0x000d, 0x0000, 0x0003, 0x4208, 0x7261, 0x7267, 0x7061, 0x0068, 
  285. 0x1400, 0x0000, 0x0300, 0x0500, 0x7241, 0x6169, 0x056c, 0x7241, 0x6169, 
  286. 0x056c, 0x7241, 0x6169, 0x0e6c, 0x0000, 0x0300, 0x0000, 0x0000, 0x0000, 
  287. 0x0000, 0x0000, 0x0000, 0x0e00, 0x0000, 0x0300, 0x0000, 0x0000, 0x0000, 
  288. 0x0000, 0x0000, 0x0000, 0x0e00, 0x0000, 0x0300, 0x0800, 0x0000, 0x0600, 
  289. 0x0000, 0x0600, 0x0000, 0x0e00, 0x0000, 0x0300, 0x0400, 0x0000, 0x0400, 
  290. 0x0000, 0x0400, 0x0000, 0x8200, 0x0000, 0x2000, 0x0000, 0x8000, 0x0000, 
  291. 0x0080, 0x8000, 0x0000, 0xff00, 0x00ff, 0x0000, 0x8080, 0x8000, 0x8000, 
  292. 0x8000, 0x8080, 0x0000, 0xff00, 0x0000, 0x00ff, 0xff00, 0x0000, 0x0000, 
  293. 0xffff, 0xff00, 0xff00, 0xa600, 0xf0ca, 0xc000, 0xc0dc, 0x8000, 0x0080, 
  294. 0xff00, 0xffff, 0xc000, 0xc0c0, 0xa000, 0xa4a0, 0xff00, 0xf0fb, 0x0000, 
  295. 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 
  296. 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 
  297. 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x2200, 0x0000, 
  298. 0x2000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 
  299. 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 
  300.  
  301.     IDC_RTBARXCTRL2, 0x376, 504, 0
  302. 0x0000, 0x0000, 0x0000, 0x0001, 0x1dc4, 0x0000, 0x1cc6, 0x0000, 0x0020, 
  303. 0x0000, 0x0000, 0xffff, 0x00ff, 0x999a, 0x9999, 0x9999, 0x3fc9, 0x999a, 
  304. 0x9999, 0x9999, 0x3fe9, 0x999a, 0x9999, 0x9999, 0x3fe9, 0x999a, 0x9999, 
  305. 0x9999, 0x3fc9, 0x0000, 0x0000, 0xc0c0, 0x00c0, 0x0000, 0x0000, 0x0001, 
  306. 0x0000, 0x0000, 0x0000, 0x0008, 0x0000, 0x0000, 0x0000, 0x0001, 0x0000, 
  307. 0x0000, 0x0000, 0x0001, 0x0000, 0x0000, 0x0000, 0x0000, 0x4024, 0x0000, 
  308. 0x0000, 0x0000, 0x0000, 0x0001, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 
  309. 0x0000, 0x1400, 0x0040, 0x0000, 0x0000, 0x1400, 0x0040, 0x0000, 0x0000, 
  310. 0x4105, 0x6972, 0x6c61, 0x0000, 0x0000, 0xff00, 0x0000, 0x0000, 0x00ff, 
  311. 0x00ff, 0x0000, 0x0000, 0x4804, 0x6769, 0x0068, 0x0000, 0x0000, 0x2200, 
  312. 0x0340, 0x6f4c, 0x0077, 0x0000, 0x0000, 0xf000, 0x063f, 0x6f4e, 0x6d72, 
  313. 0x6c61, 0x0000, 0x0000, 0x0000, 0x4014, 0x0000, 0x0000, 0x0000, 0x0000, 
  314. 0x3ff0, 0x000d, 0x0000, 0x0003, 0x4208, 0x7261, 0x7267, 0x7061, 0x0068, 
  315. 0x1400, 0x0000, 0x0300, 0x0500, 0x7241, 0x6169, 0x056c, 0x7241, 0x6169, 
  316. 0x056c, 0x7241, 0x6169, 0x0e6c, 0x0000, 0x0300, 0x0000, 0x0000, 0x0000, 
  317. 0x0000, 0x0000, 0x0000, 0x0e00, 0x0000, 0x0300, 0x0000, 0x0000, 0x0000, 
  318. 0x0000, 0x0000, 0x0000, 0x0e00, 0x0000, 0x0300, 0x0800, 0x0000, 0x0600, 
  319. 0x0000, 0x0600, 0x0000, 0x0e00, 0x0000, 0x0300, 0x0400, 0x0000, 0x0400, 
  320. 0x0000, 0x0400, 0x0000, 0x8200, 0x0000, 0x2000, 0x0000, 0x8000, 0x0000, 
  321. 0x0080, 0x8000, 0x0000, 0xff00, 0x00ff, 0x0000, 0x8080, 0x8000, 0x8000, 
  322. 0x8000, 0x8080, 0x0000, 0xff00, 0x0000, 0x00ff, 0xff00, 0x0000, 0x0000, 
  323. 0xffff, 0xff00, 0xff00, 0xa600, 0xf0ca, 0xc000, 0xc0dc, 0x8000, 0x0080, 
  324. 0xff00, 0xffff, 0xc000, 0xc0c0, 0xa000, 0xa4a0, 0xff00, 0xf0fb, 0x0000, 
  325. 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 
  326. 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 
  327. 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x2200, 0x0000, 
  328. 0x2000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 
  329. 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 
  330.  
  331.     0
  332. END
  333.  
  334.  
  335. /////////////////////////////////////////////////////////////////////////////
  336. //
  337. // String Table
  338. //
  339.  
  340. STRINGTABLE PRELOAD DISCARDABLE 
  341. BEGIN
  342.     IDR_MAINFRAME           "Bars\n\nBars\n\n\nBars.Document\nBars Document"
  343. END
  344.  
  345. STRINGTABLE PRELOAD DISCARDABLE 
  346. BEGIN
  347.     AFX_IDS_APP_TITLE       "Bars"
  348.     AFX_IDS_IDLEMESSAGE     "Ready"
  349. END
  350.  
  351. STRINGTABLE DISCARDABLE 
  352. BEGIN
  353.     ID_INDICATOR_EXT        "EXT"
  354.     ID_INDICATOR_CAPS       "CAP"
  355.     ID_INDICATOR_NUM        "NUM"
  356.     ID_INDICATOR_SCRL       "SCRL"
  357.     ID_INDICATOR_OVR        "OVR"
  358.     ID_INDICATOR_REC        "REC"
  359. END
  360.  
  361. STRINGTABLE DISCARDABLE 
  362. BEGIN
  363.     ID_FILE_NEW             "Create a new document\nNew"
  364.     ID_FILE_OPEN            "Open an existing document\nOpen"
  365.     ID_FILE_CLOSE           "Close the active document\nClose"
  366.     ID_FILE_SAVE            "Save the active document\nSave"
  367.     ID_FILE_SAVE_AS         "Save the active document with a new name\nSave As"
  368.     ID_FILE_PAGE_SETUP      "Change the printing options\nPage Setup"
  369.     ID_FILE_PRINT_SETUP     "Change the printer and printing options\nPrint Setup"
  370.     ID_FILE_PRINT           "Print the active document\nPrint"
  371.     ID_FILE_PRINT_PREVIEW   "Display full pages\nPrint Preview"
  372. END
  373.  
  374. STRINGTABLE DISCARDABLE 
  375. BEGIN
  376.     ID_APP_ABOUT            "Display program information, version number and copyright\nAbout"
  377.     ID_APP_EXIT             "Quit the application; prompts to save documents\nExit"
  378. END
  379.  
  380. STRINGTABLE DISCARDABLE 
  381. BEGIN
  382.     ID_FILE_MRU_FILE1       "Open this document"
  383.     ID_FILE_MRU_FILE2       "Open this document"
  384.     ID_FILE_MRU_FILE3       "Open this document"
  385.     ID_FILE_MRU_FILE4       "Open this document"
  386.     ID_FILE_MRU_FILE5       "Open this document"
  387.     ID_FILE_MRU_FILE6       "Open this document"
  388.     ID_FILE_MRU_FILE7       "Open this document"
  389.     ID_FILE_MRU_FILE8       "Open this document"
  390.     ID_FILE_MRU_FILE9       "Open this document"
  391.     ID_FILE_MRU_FILE10      "Open this document"
  392.     ID_FILE_MRU_FILE11      "Open this document"
  393.     ID_FILE_MRU_FILE12      "Open this document"
  394.     ID_FILE_MRU_FILE13      "Open this document"
  395.     ID_FILE_MRU_FILE14      "Open this document"
  396.     ID_FILE_MRU_FILE15      "Open this document"
  397.     ID_FILE_MRU_FILE16      "Open this document"
  398. END
  399.  
  400. STRINGTABLE DISCARDABLE 
  401. BEGIN
  402.     ID_NEXT_PANE            "Switch to the next window pane\nNext Pane"
  403.     ID_PREV_PANE            "Switch back to the previous window pane\nPrevious Pane"
  404. END
  405.  
  406. STRINGTABLE DISCARDABLE 
  407. BEGIN
  408.     ID_WINDOW_SPLIT         "Split the active window into panes\nSplit"
  409. END
  410.  
  411. STRINGTABLE DISCARDABLE 
  412. BEGIN
  413.     ID_EDIT_CLEAR           "Erase the selection\nErase"
  414.     ID_EDIT_CLEAR_ALL       "Erase everything\nErase All"
  415.     ID_EDIT_COPY            "Copy the selection and put it on the Clipboard\nCopy"
  416.     ID_EDIT_CUT             "Cut the selection and put it on the Clipboard\nCut"
  417.     ID_EDIT_FIND            "Find the specified text\nFind"
  418.     ID_EDIT_PASTE           "Insert Clipboard contents\nPaste"
  419.     ID_EDIT_REPEAT          "Repeat the last action\nRepeat"
  420.     ID_EDIT_REPLACE         "Replace specific text with different text\nReplace"
  421.     ID_EDIT_SELECT_ALL      "Select the entire document\nSelect All"
  422.     ID_EDIT_UNDO            "Undo the last action\nUndo"
  423.     ID_EDIT_REDO            "Redo the previously undone action\nRedo"
  424. END
  425.  
  426. STRINGTABLE DISCARDABLE 
  427. BEGIN
  428.     ID_VIEW_TOOLBAR         "Show or hide the toolbar\nToggle ToolBar"
  429.     ID_VIEW_STATUS_BAR      "Show or hide the status bar\nToggle StatusBar"
  430. END
  431.  
  432. STRINGTABLE DISCARDABLE 
  433. BEGIN
  434.     AFX_IDS_SCSIZE          "Change the window size"
  435.     AFX_IDS_SCMOVE          "Change the window position"
  436.     AFX_IDS_SCMINIMIZE      "Reduce the window to an icon"
  437.     AFX_IDS_SCMAXIMIZE      "Enlarge the window to full size"
  438.     AFX_IDS_SCNEXTWINDOW    "Switch to the next document window"
  439.     AFX_IDS_SCPREVWINDOW    "Switch to the previous document window"
  440.     AFX_IDS_SCCLOSE         "Close the active window and prompts to save the documents"
  441. END
  442.  
  443. STRINGTABLE DISCARDABLE 
  444. BEGIN
  445.     AFX_IDS_SCRESTORE       "Restore the window to normal size"
  446.     AFX_IDS_SCTASKLIST      "Activate Task List"
  447. END
  448.  
  449. STRINGTABLE DISCARDABLE 
  450. BEGIN
  451.     AFX_IDS_PREVIEW_CLOSE   "Close print preview mode\nCancel Preview"
  452. END
  453.  
  454. #endif    // English (U.S.) resources
  455. /////////////////////////////////////////////////////////////////////////////
  456.  
  457.  
  458.  
  459. #ifndef APSTUDIO_INVOKED
  460. /////////////////////////////////////////////////////////////////////////////
  461. //
  462. // Generated from the TEXTINCLUDE 3 resource.
  463. //
  464. #define _AFX_NO_SPLITTER_RESOURCES
  465. #define _AFX_NO_OLE_RESOURCES
  466. #define _AFX_NO_TRACKER_RESOURCES
  467. #define _AFX_NO_PROPERTY_RESOURCES
  468.  
  469. #if !defined(AFX_RESOURCE_DLL) || defined(AFX_TARG_ENU)
  470. #ifdef _WIN32
  471. LANGUAGE 9, 1
  472. #pragma code_page(1252)
  473. #endif
  474. #include "res\Bars.rc2"  // non-Microsoft Visual C++ edited resources
  475. #include "afxres.rc"         // Standard components
  476. #include "afxprint.rc"       // printing/print preview resources
  477. #endif
  478. /////////////////////////////////////////////////////////////////////////////
  479. #endif    // not APSTUDIO_INVOKED
  480.  
  481.